







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Enumerates the items in the collection that satisfy the condition defined
by predicate.
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
C# |
---|
public IEnumerable<T> FindAll( Predicate<T> predicate ) |
Visual Basic (Declaration) |
---|
Public Function FindAll ( _ predicate As Predicate(Of T) _ ) As IEnumerable(Of T) |
Visual C++ |
---|
public: IEnumerable<T>^ FindAll ( Predicate<T>^ predicate ) |
Parameters
- predicate
- Predicate<(Of <T>)>
A delegate that defines the condition to check for.
Return Value
An IEnumerable<T> that enumerates the items that satisfy the condition.
See Also
Wintellect.PowerCollections Namespace